home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
filelist
/
filelist.doc
< prev
next >
Wrap
Text File
|
1991-11-24
|
3KB
|
75 lines
Giovanni Guardalben
Hi.T Srl
Via Carlo Steeb, 7
37122 Verona
Italy
tel. +39-45-592966
tel. +39-45-592785
fax +39-45-800-9890
This is a short description of properties of a multiple selection file list
control:
BackColorGray : - introduces background (and/or foreground) color for
disabled list entries
- COLOR datatype
- editable at design/run time
ForeColorGray : - introduces foreground (and/or background) color for
disabled list entries
- COLOR datatype
- editable at design/run time
MaxSelect : - max number of list entries that can be selected
- SHORT datatype
- editable at design/run time
FileName : - name of file that contains list items
Note: each file item must be of fixed length (including
CR and LF if generated by a text editor);
at run time must be preceded by line size;
- STRING datatype
- editable at design/run time
LineSize : - length of list items (max 80 chars)
- SHORT datatype
- editable at design/run time
VerifyText : - returns an error if the string is not in the list
- STRING datatype
- editable at design/run time
LocateText : - positions the list on this property's text
- STRING datatype
- editable at design/run time
ListArray : - array that returns the list items text
- STRING datatype
- read only at run time
ListGray : - array that disables list items from selection
- SHORT datatype
- read/write at run time
ListSelect : - array that returns/sets selected list items
Note: last element of ListGray must be -1
- read/write at run time
DisplayCol : - array that selects which tokens and in what order to
display tokens on the list
Note: tokens are extracted from each file line
considering blanks/tabs/CR/LF as separators
OutputCol : - array that selects which tokens and in what order to
return on the ListArray array
Note: tokens are extracted from each file line
considering blanks/tabs/CR/LF as separators
InputCol : - array that selects which tokens and in what order to
verify on the VerifyText string
Note: tokens are extracted from each file line
considering blanks/tabs/CR/LF as separators